home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-06-04 | 391 b | 28 lines | [TEXT/MPS ] |
- #
- # External_Tools interface test script.
- #
-
- Libraries "YourTool.vulib";
-
- x := YourTool( "Initialize", true);
- println x;
-
- x:= YourTool( "YourService", 5, 1);
-
- println ">> YourTool";
- println x;
-
- x := YourTool( "GetToolVersion" );
- println x;
-
- x := YourTool( "GetToolServices");
- println x;
-
- x := YourTool( "ServiceSupported", "YourService");
- println x;
-
- x := YourTool( "Quit" );
- println x;
-
-
-